Use g_quark_from_static_string where possible
authorMatthias Clasen <matthiasc@src.gnome.org>
Mon, 18 Aug 2008 00:14:17 +0000 (00:14 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 18 Aug 2008 00:14:17 +0000 (00:14 +0000)
svn path=/trunk/; revision=21146

ChangeLog
gtk/gtksizegroup.c

index 283eaf91386cfe9a06d58231e17494ab7b999b77..1fcfb740ede84f511285a89fef8568dda505e068 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2008-08-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtksizegroup.c: Use g_quark_from_static_string() where possible.
+
+2008-08-16  Matthias Clasen  <mclasen@redhat.com>
+
+       * NEWS: Updates
+
 2008-08-16  Torsten Schoenfeld  <kaffeetisch@gmx.de>
 
        * gdk/gdkwindow.c: Fix small issues in the documentation of
index 531245379a6c051185d3d87bd794bf0234010915..5926b52557c7a9232c72c33ee216472c38db7273 100644 (file)
@@ -275,7 +275,7 @@ initialize_size_group_quarks (void)
   if (!size_groups_quark)
     {
       size_groups_quark = g_quark_from_static_string (size_groups_tag);
-      visited_quark = g_quark_from_string (visited_tag);
+      visited_quark = g_quark_from_static_string (visited_tag);
     }
 }